net/http.response.bodyAllowed (method)

4 uses

	net/http (current package)
		server.go#L607: 	if !w.cw.chunking && w.bodyAllowed() {
		server.go#L1564: func (w *response) bodyAllowed() bool {
		server.go#L1639: 	if !w.bodyAllowed() {
		server.go#L1687: 	if w.req.Method != "HEAD" && w.contentLength != -1 && w.bodyAllowed() && w.contentLength != w.written {